home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / shells.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  90 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10252);
  10.  script_version ("$Revision: 1.20 $");
  11.  script_cve_id("CAN-1999-0509");
  12.  
  13.  name["english"] = "Shells in /cgi-bin";
  14.  name["francais"] = "Shells dans /cgi-bin";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. The remote web server has one of these shells installed
  19. in /cgi-bin :
  20.     ash, bash, csh, ksh, sh, tcsh, zsh
  21.  
  22. Leaving executable shells in the cgi-bin directory of
  23. a web server may allow an attacker to execute arbitrary
  24. commands on the target machine with the privileges of the 
  25. http daemon (usually root or nobody).
  26.  
  27. Solution : Remove all the shells from /cgi-bin.
  28.  
  29. Risk factor : High";
  30.  
  31.  desc["francais"] = "
  32. Le serveur web distant α l'un des shells suivants installΘ
  33. dans /cgi-bin :
  34.     ash, bash, csh, ksh, sh, tcsh, zsh
  35.     
  36. Laisser un shell executable dans le repertoire cgi-bin 
  37. peut permettre α des utilisateurs distants d'executer
  38. des commandes arbitraires sur la machine avec l'UID
  39. du serveur web, ce qui est une menace en matiΦre de
  40. sΘcuritΘ.
  41.  
  42. Solution : enlevez tous les shells de /cgi-bin
  43.  
  44. Facteur de risque : sΘrieux";
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Checks for the presence of various shells in /cgi-bin";
  48.  summary["francais"] = "VΘrifie la prΘsence de plusieurs shells dans /cgi-bin";
  49.  script_summary(english:summary["english"], francais:summary["francais"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  55.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  56.  family["english"] = "CGI abuses";
  57.  family["francais"] = "Abus de CGI";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("find_service.nes", "no404.nasl");
  60.  script_require_ports("Services/www", 80);
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68. include("http_func.inc");
  69. include("http_keepalive.inc");
  70.  
  71. port = get_http_port(default:80);
  72.  
  73.  
  74. if(!get_port_state(port))exit(0);
  75.  
  76. sh = make_list("ash", "bash", "csh", "ksh", "sh", "tcsh", "zsh");
  77.  
  78. foreach dir (cgi_dirs())
  79. {
  80.  foreach s (sh)
  81.  {
  82.   ok = is_cgi_installed_ka(item:string(dir, "/", s), port:port);
  83.   if(ok)
  84.   {
  85.    security_hole(port);
  86.    exit(0);
  87.   }
  88.  }
  89. }
  90.